home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / pgmprot.com / DEMO.MAK < prev    next >
Encoding:
Text File  |  1988-11-05  |  350 b   |  17 lines

  1. #
  2. #    MAKE file for DEMO.EXE: Serial Number Demo Program (SMALL model)
  3. #
  4. #    For use with Microsoft MAKE and Microsoft MASM 5.1 and Microsoft C 5.1.
  5. #
  6. #    MODEL may be SMALL, COMPACT, MEDIUM, or LARGE.
  7.  
  8. serno.obj : serno.asm
  9.     masm /Ml /DMODEL=SMALL serno;
  10.  
  11. demo.obj : demo.c
  12.     cl demo.c /c
  13.  
  14. demo.exe : demo.obj serno.obj
  15.     link demo serno;
  16.  
  17.